home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / acpi / default.sh
Linux/UNIX/POSIX Shell Script  |  2006-05-01  |  560b  |  27 lines

  1. #!/bin/sh
  2. # Copyright 1999-2004 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. # $Header: /var/cvsroot/gentoo-x86/sys-power/acpid/files/acpid-1.0.4-default.sh,v 1.1 2005/03/15 19:15:53 ciaranm Exp $
  5.  
  6. # Default acpi script that takes an entry for all actions
  7.  
  8. set $*
  9.  
  10. group=${1/\/*/}
  11. action=${1/*\//}
  12.  
  13. case "$group" in
  14.     button)
  15.         case "$action" in
  16.             power)    /sbin/init 0
  17.                 ;;
  18.             *)    logger "ACPI action $action is not defined"
  19.                 ;;
  20.         esac
  21.         ;;
  22.  
  23.     *)
  24.         logger "ACPI group $group / action $action is not defined"
  25.         ;;
  26. esac
  27.